/** * WorthDoing.ai * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * File: src/app/investigate/[id]/page.tsx * Description: Live investigation page — server shell that mounts the streaming client view. */ import { InvestigationLive } from "./InvestigationLive"; export default async function InvestigatePage({ params }: PageProps<"/investigate/[id]">) { const { id } = await params; return ; }